home *** CD-ROM | disk | FTP | other *** search
- program HTTPService;
-
- {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.dll'}
- {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.ServiceProcess.dll'}
- {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.XML.dll'}
- {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Configuration.Install.dll'}
-
- uses
- System.Reflection,
- System.ServiceProcess,
- uRNGintf in 'uRNGintf.pas',
- uNTService in 'uNTService.pas' {uNTService.TNTKeyService: System.ServiceProcess.ServiceBase},
- uInstService in 'uInstService.pas' {uInstService.TNTServiceInstaller: System.Configuration.Install.Installer};
-
- [assembly: AssemblyTitle ('NT Key Service')]
- [assembly: AssemblyDescription('NT Key Service')]
- [assembly: AssemblyCompany ('Ultimate Software, Inc.')]
- [assembly: AssemblyProduct ('UsgKeyService')]
- [assembly: AssemblyCopyright ('⌐ 2003 Ultimate Software, Inc.')]
- [assembly: AssemblyTrademark ('ULTIPRO')]
- [assembly: AssemblyVersion ('1.0.0.0')]
-
- {$R Ultimate.res}
-
- [STAthread]
- begin
- NTKeyService := TNTKeyService.Create;
- System.ServiceProcess.ServiceBase.Run([NTKeyService]);
- end.
-